home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-18 | 644 b | 26 lines | [TEXT/R*ch] |
- // (c) copyright 1995,1996, Jon Kalb, Liberty Software
- // Kalb@LibertySoft.com
- // You may freely incorporate this code into any machine-
- // readable project. You may modify this code, but you may
- // not remove this statement.
-
- #include <iostream.h>
-
- // manipulators
-
- ostream &showflags(ostream &stream);
-
- // these are implemented as #defines but they could be
- // implemented as const or as manipulator functions
- #define doutbackspace '\b'
- #define doutformfeed '\f'
- #define doutsoftflush '\r'
- #define douttab '\t'
- #define doutverttab '\v'
- #define doutsysbeep '\a'
- #define doutdebug '\0'
- #define doutdropin '\0'
- #define doutcommand ';'
-
-
-